home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
programm.ing
/
poplibsr.arc
/
DEBUG.H
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1988-08-19
|
198 b
|
10 lines
#ifdef DEBUGGING
#define DEBUG(x) printf x
#define ENTER(x) printf("entering: %s\n","x")
#define LEAVE(x) printf("leaving: %s\n","x")
#else
#define DEBUG(x)
#define ENTER(x)
#define LEAVE(x)
#endif